home *** CD-ROM | disk | FTP | other *** search
- /********************************************************************
- * lindner
- * 3.1.1.1
- * 1993/02/11 18:03:05
- * /home/mudhoney/GopherSrc/CVS/gopher+/object/boolean.h,v
- * $Status: $
- *
- * Paul Lindner, University of Minnesota CIS.
- *
- * Copyright 1991, 1992 by the Regents of the University of Minnesota
- * see the file "Copyright" in the distribution for conditions of use.
- *********************************************************************
- * MODULE: boolean.h
- * Header file that defines a boolean type.
- *********************************************************************
- * Revision History:
- * boolean.h,v
- * Revision 3.1.1.1 1993/02/11 18:03:05 lindner
- * Gopher+1.2beta release
- *
- * Revision 1.1 1992/12/10 23:27:52 lindner
- * gopher 1.1 release
- *
- *
- *********************************************************************/
-
-
- /*
- * Simple boolean type
- */
-
- #ifndef BOOLEAN_H
- #define BOOLEAN_H
-
- #undef boolean /** Just in case it's defined **/
- typedef int boolean;
- typedef int BOOLEAN;
-
- #if !defined(TRUE) && !defined(FALSE)
- #define TRUE (1)
- #define FALSE (0)
- #endif
-
- #endif /* BOOLEAN_H */
-